/* ============================================================
   Reset de Estilos e Configurações Globais
   ============================================================ */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
  }
  
  /* ============================================================
     Cabeçalho e Navegação
     ============================================================ */
  header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
  }
  
  header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  
  header nav ul li {
    margin:  15px;
  }
  
  header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  header nav ul li a:hover {
    text-decoration: underline;
  }
  
  /* ============================================================
     Seção Hero
     ============================================================ */
  
  .hero img {
    width: 100%;
    max-height: 100px;
    object-fit: cover;
    border-bottom: 0px solid black;
    margin-bottom: 0px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* ============================================================
     Seção de Serviços
     ============================================================ */
  .services {
    padding: 40px 20px;
    background-color: gray;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .service-card {
    display: inline-block;
    width: 30%;
    margin: 0 15px 20px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .service-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #555;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  /* ============================================================
     Seção de Depoimentos
     ============================================================ */
  .testimonials {
    padding: 30px 20px;
    background-color: black;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .testimonial {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
  }
  
  /* ============================================================
     Rodapé
     ============================================================ */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
  }
  
  footer nav ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
  }
  
  footer nav ul li {
    margin: 5px 0;
  }
  
  footer nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  footer nav ul li a:hover {
    text-decoration: underline;
  }
  
  /* ============================================================
     Responsividade
     ============================================================ */
  @media (max-width: 768px) {
    .service-card {
      width: 80%;
      margin-bottom: 10px;
    }
    
    header nav ul {
      flex-direction: column;
    }
    
    header nav ul li {
      margin: 10px 0;
    }
  }
img{
    width: 100px;
    height: 100px;
}  

a{
    color: black;
}

h3{
    color: black;
}